home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (3rd Edition)
/
The Business Master (3rd Edition).iso
/
files
/
grap_cad
/
dicogo
/
fixtxt.lsp
< prev
next >
Wrap
Lisp/Scheme
|
1991-09-30
|
508b
|
22 lines
; FIXTXT.LSP
; This function forces recalculation of the group 10,20
; values for middle-justified text.
;
; This is only necessary with R10 or earlier versions of ACAD.
;
;
;
; Copyright (c) 1991, D I Management Corporation
;
;
(prompt "\nLoading . . . .\n")
(defun c:fixtxt()
(setq SSet nil)
(setq SSet (ssget "X" (list (cons 0 "TEXT"))))
(setq Ndx 0)
(while (< Ndx (sslength SSet))
(entmod (entget (ssname SSet Ndx)))
(setq Ndx (1+ Ndx))
)
)